home *** CD-ROM | disk | FTP | other *** search
- /* ToolServer.h: How to create and send an AppleEvent to ToolServer */
-
- #ifndef __TOOLSERVER__
- #define __TOOLSERVER__
-
- #include <Types.h>
- #include <Aliases.h>
- #include <AppleEvents.h>
- #include <Files.h>
-
- #define kToolServerCreator 'MPSX'
- #define kToolServerType 'MPSX'
-
- typedef char *CString;
- typedef CString *CStringPtr, **CStringHandle;
-
- OSErr ToolServerCommand(AEDesc *command, CStringHandle *output, CStringHandle *diagnostic,
- AEIdleUPP idleProc, AEFilterUPP filterProc);
-
- #endif
-